Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support array flatten sql function #7239

Merged
merged 5 commits into from
Aug 9, 2023
Merged

Conversation

jayzhan211
Copy link
Contributor

Which issue does this PR close?

Closes #6995

Rationale for this change

What changes are included in this PR?

Are these changes tested?

Are there any user-facing changes?

@github-actions github-actions bot added logical-expr Logical plan and expressions physical-expr Changes to the physical-expr crates core Core DataFusion crate sqllogictest SQL Logic Tests (.slt) labels Aug 9, 2023
@jayzhan211 jayzhan211 marked this pull request as draft August 9, 2023 03:33
Signed-off-by: jayzhan211 <[email protected]>
@jayzhan211 jayzhan211 marked this pull request as ready for review August 9, 2023 04:26
Signed-off-by: jayzhan211 <[email protected]>
@jayzhan211
Copy link
Contributor Author

@alamb @izveigor Ready for review, thanks.

Signed-off-by: jayzhan211 <[email protected]>
Copy link
Contributor

@izveigor izveigor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Thanks, @jayzhan211!

Copy link
Contributor

@alamb alamb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree -- this looks great @jayzhan211 thank you

And thank you for the review @izveigor

indexes: OffsetBuffer<i32>,
) -> OffsetBuffer<i32> {
let buffer = offsets.into_inner();
let offsets: Vec<i32> = indexes.iter().map(|i| buffer[*i as usize]).collect();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a very nice implementation 👌

@alamb alamb changed the title Support array flatten sql function Support array flatten sql function Aug 9, 2023
@alamb alamb merged commit ee59dcc into apache:main Aug 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core Core DataFusion crate logical-expr Logical plan and expressions physical-expr Changes to the physical-expr crates sqllogictest SQL Logic Tests (.slt)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement flatten function
3 participants